* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #050505;
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255,0,60,0.08) 30%,
        transparent 60%
    );
    animation: moveLines 8s linear infinite;
    z-index: -2;
}

body::after {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255,0,60,0.15) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: pulseDots 4s infinite alternate;
    z-index: -1;
}

@keyframes moveLines {
    from { transform: translateX(0) translateY(0); }
    to { transform: translateX(25%) translateY(25%); }
}

@keyframes pulseDots {
    from { opacity: 0.4; }
    to { opacity: 0.9; }
}

.container {
    width: 85%;
    margin: auto;
}

header {
    background: rgba(20,0,0,0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    padding: 20px 0;
}

header h1 {
    text-align: center;
    color: #ff003c;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

nav li {
    margin: 0 15px;
}

nav a {
    color: white;
    text-decoration: none;
}

nav a:hover {
    color: #ff003c;
}

#hero {
    text-align: center;
    padding: 100px 20px;
}

.profile {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid #ff003c;
    object-fit: cover;
}

section {
    padding: 80px 0;
}

.cards {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.card {
    background: rgba(25,0,0,0.8);
    padding: 25px;
    border-radius: 15px;
    width: 250px;
    transition: 0.4s;
}

.card:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 0 35px rgba(255,0,60,0.45);
}

.btn-link {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: #ff003c;
    color: white;
    text-decoration: none;
    border-radius: 10px;
}

.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: 1s;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

footer {
    text-align: center;
    padding: 20px;
}